home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Imagine!
/
Imagine (Wayzata Technology) (1995).iso
/
mac
/
Macfiles
/
AMazing
/
00001_Script_1
next >
Wrap
Text File
|
1994-11-11
|
788b
|
37 lines
--StartMovie
on startMovie
continue
end startMovie
--checkCursor, this changes the left and right cursors when over the hot spots
on checkCursor
set forwardCursor to [8,9]
set leftCursor to [10,11]
set rightCursor to [12,13]
if rollover (7) then
set the cursor of sprite 7 to forwardCursor
else
if rollover (8) then
set the cursor of sprite (8) to leftcursor
else
if rollover (9) then
set the cursor of sprite (9) to rightcursor
end if
end if
end if
updateStage
end
--mapCursor, this handler returns the cursor to the arrow when the map is in view
on mapCursor
set the cursor of sprite 7 to -1
set the cursor of sprite 8 to -1
set the cursor of sprite 9 to -1
updateStage
end